home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 26 / Cream of the Crop 26.iso / program / wsc4c21.zip / TERM16._B_ < prev    next >
Text File  |  1997-05-22  |  1KB  |  44 lines

  1. #
  2. # Borland makefile for TERM [Win16]
  3. #
  4. # To use: "make -fterm._B_"
  5. #
  6.  
  7. CCFLAGS = -c -2
  8.  
  9. term.exe: term.res term.obj term.def  \
  10.           about.obj config.obj line.obj menu.obj accept.obj ansi.obj \
  11.           paint.obj sioerror.obj wsc16.lib mio16.lib xydriv16.lib
  12.  tlink -c -n -Tw c0ws @term.rsp,term,term,mathws cws import wsc16 mio16 xydriv16.lib,term,term
  13.  rlink term.res term.exe
  14.  
  15. term.res: term.rc
  16.     brcc term.rc
  17.  
  18. about.obj: about.c about.h
  19.    bcc $(CCFLAGS)  about.c
  20.  
  21. accept.obj: accept.c accept.h
  22.    bcc $(CCFLAGS)  accept.c
  23.  
  24. ansi.obj: ansi.c ansi.h
  25.    bcc $(CCFLAGS)  ansi.c
  26.  
  27. term.obj: term.c term.h wsc.h
  28.    bcc $(CCFLAGS)  term.c
  29.  
  30. config.obj: config.c config.h wsc.h
  31.     bcc $(CCFLAGS)  config.c
  32.  
  33. paint.obj: paint.c paint.h wsc.h
  34.     bcc $(CCFLAGS)  paint.c
  35.  
  36. line.obj: line.c line.h wsc.h
  37.     bcc $(CCFLAGS)  line.c
  38.  
  39. menu.obj: menu.c menu.h wsc.h
  40.     bcc $(CCFLAGS)  menu.c
  41.  
  42. sioerror.obj: sioerror.c sioerror.h wsc.h
  43.     bcc $(CCFLAGS)  sioerror.c
  44.